home *** CD-ROM | disk | FTP | other *** search
/ TeX 1995 July / TeX CD-ROM July 1995 (Disc 1)(Walnut Creek)(1995).ISO / dviware / ln03 / thomas / makefile < prev    next >
Makefile  |  1990-10-01  |  481b  |  23 lines

  1. #
  2. #   Makefile for Ln03DVI with PK file support
  3. #
  4. #   Matt Thomas, Digital Equipment Corp. (mthomas@thebay.dec.com)
  5. #   23-Mar-87
  6. #
  7. #   This code is distributed as-is. Thse programs are not a DEC product
  8. #   and are not guaranteed to work.
  9. #
  10. LN03OBJS = ln03dvi.o ln03fonts.o ln03specials.o ln03version.o
  11. PKOBJS = pk.o pkgbl.o
  12.  
  13. CC = cc
  14. CFLAGS = -O
  15. ln03dvi: $(LN03OBJS) $(PKOBJS)
  16.     $(CC) $(CFLAGS) $(LN03OBJS) $(PKOBJS) -o ln03dvi
  17.  
  18. $(PKOBJS) : pk.h
  19. ln03fonts.o : pk.h
  20.  
  21. clean:
  22.     rm *.o
  23.